home *** CD-ROM | disk | FTP | other *** search
/ Sacred & Secular / Sacred and Secular.iso / pc / movies / shared.dir / 04845_Script__PanPic handlerPanPic handler.ls < prev    next >
Text File  |  1996-04-03  |  401b  |  23 lines

  1. on mouseDOWN
  2.   if the doubleclick then
  3.     dontpassevent
  4.   else
  5.     
  6.     set h = the mouseH
  7.     if the mouseV > the top of sprite 4 and the mouseH > the left of sprite 4 then
  8.       goCaption2  
  9.     else
  10.       
  11.       if h < 20 then
  12.         swapPic(0,3)
  13.       else if h > 620 then
  14.         swapPic(1,3)
  15.       else      
  16.         PanPic
  17.       end if
  18.       
  19.     end if
  20.   end if
  21.   
  22. end
  23.